Help > Reference > Macros > Runtime object > BrowseForFolder method

BrowseForFolder method

Calling this method will present the user with the standard Windows "Folder Selection" dialog.

Member of

Runtime

Type

Function(Path)

Parameters

Return

Example

Dest = BrowseForFolder("c:\temp")
If Dest <> "" Then
  For Each Document in App.ActiveTab.FetchAll
    ' Do your processing here
  Next
End If

See Also

Macro Object Model

Runtime